home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / gpolyline.6 < prev    next >
Encoding:
Text File  |  1996-07-16  |  903 b   |  28 lines

  1. .TH GPOLYLINE
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. GPOLYLINE
  5.  
  6.  
  7.  
  8.  PolylineType GPOLYLINE( GeometryTreeType Object, NumericType Optimal )
  9.  
  10. Converts all Curves(s), (Trimmed) Surface(s), and Trivariate(s) Object
  11. into polylines using the RESOLUTION variable. The larger the RESOLUTION is,
  12. the finer the resulting approximation will be. It returns a single polyline
  13. object.
  14.  
  15. If Optimal is false, the points are sampled at equally spaced
  16. interval in the parametric space. If Optimal true, a better, more
  17. expensive computationally, algorithm is used to derive optimal sampling
  18. locations as to minimize the maximal distance between the curve and
  19. piecewise linear approximation (L infinity norm).
  20.  
  21. Example:
  22.  
  23.     Polys = GPOLYLINE( list( Srf1, Srf2, Srf3, list( Crv1, Crv2, Crv3 ) ),
  24.                        on );
  25.  
  26. converts to polylines the three surfaces Srf1, Srf2, and Srf3
  27. and the three curves Crv1, Crv2, and Crv3.
  28.